body {
    background: url("https://www.k2p.cl/assets/images/banner/1735241798_billboard.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: "Roboto";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh; /* Asegura que el body ocupe toda la pantalla */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.grad {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -40px;
    bottom: -40px;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 0.7;
}

.container {
    z-index: 2;
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido verticalmente */
}

.card {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
}

.card-header {
    text-align: center;
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    font-weight: 200;
    color: #333;
}

.card-body {
    padding: 20px;
}

.form-check-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.form-check-input {
    border-radius: 5px;
}

input[type=email],
input[type=password] {
    width: 100%;
    height: 50px; /* Aumenta la altura de los inputs */
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    color: #333;
    font-family: 'Exo', sans-serif;
    font-size: 15px; /* Aumenta el tamaño de la fuente */
    font-weight: 400;
    padding: 10px;
    margin-bottom: 20px; /* Aumenta el margen inferior */
}

input[type=email]:focus,
input[type=password]:focus {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.6);
}

.invalid-feedback {
    display: block;
    color: red;
}

button {
    width: 100%;
    height: 50px; /* Aumenta la altura del botón */
    background: #5379fa;
    border: none;
    color: white;
    font-family: 'Exo', sans-serif;
    font-size: 18px; /* Aumenta el tamaño de la fuente */
    font-weight: 400;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
}

button:hover {
    opacity: 0.8;
}

button:active {
    opacity: 0.6;
}

a {
    text-decoration: none;
    color: #5379fa;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}